/* ============================
   About Section
   ============================ */
.nv-about {
  background: #fff;
  padding: clamp(48px, 8vw, 96px) 24px;
  font-family: 'Segoe UI', sans-serif;
}

.nv-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.nv-about-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  color: #0b1220;
  margin-bottom: 20px;
}

.nv-about-content p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 18px;
}

.nv-about-video {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.2);
  background: #000;
  aspect-ratio: 16/9;
}

.nv-about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .nv-about-container {
    grid-template-columns: 1fr;
  }
  .nv-about-video {
    aspect-ratio: auto;
    height: 240px;
  }
}
.nv-footer {
  background: #0C2340; /* Deep navy blue */
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
}

.nv-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.nv-footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.nv-footer-col p {
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 1.6;
}

.nv-footer-col small {
  display: block;
  color: #9ca3af;
}

.nv-footer-col h4 {
  color: #00c4cc;
  font-weight: 600;
  margin-bottom: 12px;
}

.nv-footer-col ul {
  list-style: none;
  padding: 0;
}

.nv-footer-col ul li {
  margin-bottom: 8px;
}

.nv-footer-col ul li a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nv-footer-col ul li a:hover {
  color: #fff;
}

.nv-footer-form {
  display: flex;
  margin-top: 12px;
}

.nv-footer-form input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  border-radius: 3px 0 0 3px;
}

.nv-footer-form button {
  background: #0077c0; /* Green send button */
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.nv-footer-form button:hover {
  background: #00CCFF;
}

